home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / video / zapem-0.000 / zapem-0 / zapem / popgun.h < prev    next >
C/C++ Source or Header  |  1995-03-30  |  225b  |  15 lines

  1. #ifndef POPGUN_H
  2. #define POPGUN_H
  3.  
  4. /* Requires projectile.h and sprite.h to be included */
  5.  
  6. class Popgun : public Projectile
  7. {
  8. public:
  9.     Popgun( Sprite* anchor);
  10.     void sound(int channel); 
  11.     virtual void move(void);
  12. };
  13.  
  14. #endif
  15.